PERSISTENT_PARAMS (deprecated)

Description

This element contains a list of parameters that need to be saved when the application quits, or when the user interface is closed. It can be created anywhere inside the skin, and repeated as many times as you whish. Any new parameter identifier will be added to the list of parameters to be saved.

This element has been deprecated. You should now use PERSISTENT_OBJECTS instead

Common Attributes

None

Specific Attributes
Name Value Type Default Value Description Comment V.

param_ids

';' separated param identifiers

Empty.

List of identifiers of parameters to be declared as persistent.


1.2

Examples

The following example creates a single parameter handling the gain of the plug-in, and declares it as persistent, so that it will be saved when th eapplication quits, or when the user interface is closed:

<?xml version="1.0" encoding="utf-8" ?>
<SKIN language_version="1.1">
	<PARAM name="gain" default="0" max="20" min="-20" unit="dB" comment="gain of the plug-in" />
	<PERSISTENT_PARAMS param_ids="gain" />
</SKIN>